from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

83600

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-03-07
ansible - 13.2.0
Ebuild name:

app-admin/ansible-13.2.0

Description

Model-driven deployment, config management, and command execution framewor

Added to portage

2026-03-07

ansible-core - 2.20.3
Ebuild name:

app-admin/ansible-core-2.20.3

Description

Model-driven deployment, config management, and command execution fra

Added to portage

2026-03-07

apispec - 6.10.0
Ebuild name:

dev-python/apispec-6.10.0

Description

A pluggable API specification generator

Added to portage

2026-03-07

awscli - 1.44.53
Ebuild name:

app-admin/awscli-1.44.53

Description

Universal Command Line Environment for AWS

Added to portage

2026-03-07

black - 26.3.0
Ebuild name:

dev-python/black-26.3.0

Description

The uncompromising Python code formatter

Added to portage

2026-03-07

blessed - 1.33.0
Ebuild name:

dev-python/blessed-1.33.0

Description

Library for making terminal apps using colors, keyboard input and positio

Added to portage

2026-03-07

borgmatic - 2.1.3
Ebuild name:

app-backup/borgmatic-2.1.3

Description

Automatically create, prune and verify backups with borgbackup

Added to portage

2026-03-07

boto3 - 1.42.63
Ebuild name:

dev-python/boto3-1.42.63

Description

The AWS SDK for Python

Added to portage

2026-03-07

botocore - 1.42.63
Ebuild name:

dev-python/botocore-1.42.63

Description

Low-level, data-driven core of boto 3

Added to portage

2026-03-07

calligra - 25.12.3
Ebuild name:

app-office/calligra-25.12.3

Description

KDE Office Suite

Added to portage

2026-03-07

charset-normalizer - 3.4.5
Ebuild name:

dev-python/charset-normalizer-3.4.5

Description

The Real First Universal Charset Detector

Added to portage

2026-03-07

chrome-binary-plugins - 147.0.7719.3_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-147.0.7719.3_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-03-07

chromium - 147.0.7719.3
Ebuild name:

www-client/chromium-147.0.7719.3

Description

Open-source version of Google Chrome web browser

Added to portage

2026-03-07

cpp-httplib - 0.36.0
Ebuild name:

dev-cpp/cpp-httplib-0.36.0

Description

C++ HTTP/HTTPS server and client library

Added to portage

2026-03-07

cppcheck - 2.20.0
Ebuild name:

dev-util/cppcheck-2.20.0

Description

Static analyzer of C/C++ code

Added to portage

2026-03-07

deno-bin - 2.7.4
Ebuild name:

dev-lang/deno-bin-2.7.4

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-03-07

doit - 0.37.0
Ebuild name:

dev-python/doit-0.37.0

Description

Automation tool

Added to portage

2026-03-07

egl-wayland2 - 1.0.1
Ebuild name:

gui-libs/egl-wayland2-1.0.1

Description

NVIDIA wayland EGL external platform library, version 2

Added to portage

2026-03-07

egl-x11 - 1.0.5
Ebuild name:

gui-libs/egl-x11-1.0.5

Description

NVIDIA X11/XCB EGL external platform library

Added to portage

2026-03-07

expected - 1.3.1
Ebuild name:

dev-cpp/expected-1.3.1

Description

Single header implementation of std with functional-style extensions

Added to portage

2026-03-07

fastfetch - 2.60.0
Ebuild name:

app-misc/fastfetch-2.60.0

Description

Fast neofetch-like system information tool

Added to portage

2026-03-07

fex-xtajit - 2603
Ebuild name:

app-emulation/fex-xtajit-2603

Description

A wine emulation dll for running x86 application on an arm64 host

Added to portage

2026-03-07

google-auth - 2.49.0
Ebuild name:

dev-python/google-auth-2.49.0

Description

Google Authentication Library

Added to portage

2026-03-07

google-chrome-unstable - 147.0.7719.3
Ebuild name:

www-client/google-chrome-unstable-147.0.7719.3

Description

The web browser from Google

Added to portage

2026-03-07

googleapis-common-protos - 1.73.0
Ebuild name:

dev-python/googleapis-common-protos-1.73.0

Description

Python classes generated from the common protos in the g

Added to portage

2026-03-07

h5py - 3.16.0
Ebuild name:

dev-python/h5py-3.16.0

Description

Simple Python interface to HDF5 files

Added to portage

2026-03-07

i2pd - 2.59.0
Ebuild name:

net-vpn/i2pd-2.59.0

Description

A C++ daemon for accessing the I2P anonymous network

Added to portage

2026-03-07

lazy-loader - 0.5
Ebuild name:

dev-python/lazy-loader-0.5

Description

Populate library namespace without incurring immediate import costs

Added to portage

2026-03-07

libharu - 2.4.5-r1
Ebuild name:

media-libs/libharu-2.4.5-r1

Description

C/C++ library for PDF generation

Added to portage

2026-03-07

libsoup - 3.6.6
Ebuild name:

net-libs/libsoup-3.6.6

Description

HTTP client/server library for GNOME

Added to portage

2026-03-07

linkchecker - 10.6.0
Ebuild name:

net-analyzer/linkchecker-10.6.0

Description

Check websites for broken links

Added to portage

2026-03-07

mate-panel - 1.28.7
Ebuild name:

mate-base/mate-panel-1.28.7

Description

The MATE panel

Added to portage

2026-03-07

microsoft-edge - 145.0.3800.97
Ebuild name:

www-client/microsoft-edge-145.0.3800.97

Description

The web browser from Microsoft

Added to portage

2026-03-07

mu-cite - 8.1_p202011031127
Ebuild name:

app-emacs/mu-cite-8.1_p202011031127

Description

Message citation utilities for emacsen

Added to portage

2026-03-07

multi-term - 1.4-r1
Ebuild name:

app-emacs/multi-term-1.4-r1

Description

Manage multiple terminal buffers in Emacs

Added to portage

2026-03-07

multiple-cursors - 1.5.0
Ebuild name:

app-emacs/multiple-cursors-1.5.0

Description

Multiple cursors for Emacs

Added to portage

2026-03-07

nattka - 0.4.2-r1
Ebuild name:

app-portage/nattka-0.4.2-r1

Description

A New Arch Tester Toolkit -- open-source stable-bot replacement

Added to portage

2026-03-07

networkmanager - 1.56.0
Ebuild name:

net-misc/networkmanager-1.56.0

Description

A set of co-operative tools that make networking simple and straight

Added to portage

2026-03-07

nuitka - 4.0.3
Ebuild name:

dev-python/nuitka-4.0.3

Description

Python to native compiler

Added to portage

2026-03-07

octave-kernel - 0.37.1
Ebuild name:

dev-python/octave-kernel-0.37.1

Description

Jupyter kernel for octave

Added to portage

2026-03-07

pengupop - 2.2.5-r2
Ebuild name:

games-arcade/pengupop-2.2.5-r2

Description

Networked Puzzle Bubble clone

Added to portage

2026-03-07

picard - 3.0.0_alpha3_p20260306
Ebuild name:

media-sound/picard-3.0.0_alpha3_p20260306

Description

Cross-platform music tagger

Added to portage

2026-03-07

rt-tests - 2.10
Ebuild name:

dev-util/rt-tests-2.10

Description

A collection of latency testing tools for the linux(-rt) kernel

Added to portage

2026-03-07

seatd - 0.9.3
Ebuild name:

sys-auth/seatd-0.9.3

Description

Minimal seat management daemon and universal library

Added to portage

2026-03-07

sssd - 2.12.0-r1
Ebuild name:

sys-auth/sssd-2.12.0-r1

Description

System Security Services Daemon provides access to identity and authenticat

Added to portage

2026-03-07

ttyd - 1.7.7-r1
Ebuild name:

www-apps/ttyd-1.7.7-r1

Description

ttyd, a simple command-line tool for sharing terminal over the web

Added to portage

2026-03-07

wine-vanilla - 11.4
Ebuild name:

app-emulation/wine-vanilla-11.4

Description

Free implementation of Windows(tm) on Unix, without external patchs

Added to portage

2026-03-07

wiremix - 0.10.0-r1
Ebuild name:

media-sound/wiremix-0.10.0-r1

Description

A TUI mixer for PipeWire

Added to portage

2026-03-07

wv2 - 0.4.2-r5
Ebuild name:

app-text/wv2-0.4.2-r5

Description

Excellent MS Word filter lib, used in most Office suites

Added to portage

2026-03-07

zram-init - 13.2
Ebuild name:

sys-block/zram-init-13.2

Description

Scripts to support compressed swap devices or ramdisks with zRAM

Added to portage

2026-03-07

2026-03-06
FBGEMM - 1.2.0.2025.05.20-r2
Ebuild name:

sci-ml/FBGEMM-1.2.0.2025.05.20-r2

Description

Facebook GEneral Matrix Multiplication

Added to portage

2026-03-06

FBGEMM - 1.3.0.2025.09.05-r1
Ebuild name:

sci-ml/FBGEMM-1.3.0.2025.09.05-r1

Description

Facebook GEneral Matrix Multiplication

Added to portage

2026-03-06

FBGEMM - 1.4.0-r1
Ebuild name:

sci-ml/FBGEMM-1.4.0-r1

Description

Facebook GEneral Matrix Multiplication

Added to portage

2026-03-06

FBGEMM - 1.4.0.2025.12.10-r1
Ebuild name:

sci-ml/FBGEMM-1.4.0.2025.12.10-r1

Description

Facebook GEneral Matrix Multiplication

Added to portage

2026-03-06

Sys-Virt - 12.1.0
Ebuild name:

dev-perl/Sys-Virt-12.1.0

Description

API for using the libvirt library from Perl

Added to portage

2026-03-06

Tensile - 7.2.0
Ebuild name:

dev-util/Tensile-7.2.0

Description

A tool for creating a benchmark-driven GEMMs and tensor contractions code

Added to portage

2026-03-06

amdsmi - 7.2.0
Ebuild name:

dev-util/amdsmi-7.2.0

Description

AMD System Management Interface for managing and monitoring GPUs

Added to portage

2026-03-06

aotriton-bin - 0.11.2b
Ebuild name:

sci-libs/aotriton-bin-0.11.2b

Description

Ahead of Time (AOT) Triton Math Library (binary package)

Added to portage

2026-03-06

asmjit - 2025.06.28-r1
Ebuild name:

dev-libs/asmjit-2025.06.28-r1

Description

Machine code generation for C++

Added to portage

2026-03-06

asmjit - 2026.02.15
Ebuild name:

dev-libs/asmjit-2026.02.15

Description

Machine code generation for C++

Added to portage

2026-03-06

awscli - 1.44.52
Ebuild name:

app-admin/awscli-1.44.52

Description

Universal Command Line Environment for AWS

Added to portage

2026-03-06

benchmark - 1.9.5
Ebuild name:

dev-cpp/benchmark-1.9.5

Description

A microbenchmark support library

Added to portage

2026-03-06

blt - 2.5.3-r4
Ebuild name:

dev-tcltk/blt-2.5.3-r4

Description

Extension to Tk, adding new widgets, geometry managers, and misc commands

Added to portage

2026-03-06

boto3 - 1.42.62
Ebuild name:

dev-python/boto3-1.42.62

Description

The AWS SDK for Python

Added to portage

2026-03-06

botocore - 1.42.62
Ebuild name:

dev-python/botocore-1.42.62

Description

Low-level, data-driven core of boto 3

Added to portage

2026-03-06

brotlicffi - 1.2.0.1
Ebuild name:

dev-python/brotlicffi-1.2.0.1

Description

Python binding to the Brotli library

Added to portage

2026-03-06

cachetools - 7.0.3
Ebuild name:

dev-python/cachetools-7.0.3

Description

Extensible memoizing collections and decorators

Added to portage

2026-03-06

caribou - 0.4.21-r9
Ebuild name:

app-accessibility/caribou-0.4.21-r9

Description

Input assistive technology intended for switch and pointer user

Added to portage

2026-03-06

ccache - 4.13
Ebuild name:

dev-util/ccache-4.13

Description

Fast compiler cache

Added to portage

2026-03-06

chrome-binary-plugins - 146.0.7680.65_beta
Ebuild name:

www-plugins/chrome-binary-plugins-146.0.7680.65_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-03-06

chromium - 146.0.7680.65
Ebuild name:

www-client/chromium-146.0.7680.65

Description

Open-source version of Google Chrome web browser

Added to portage

2026-03-06

chrony_exporter - 0.13.3
Ebuild name:

app-metrics/chrony_exporter-0.13.3

Description

Chrony NTP exporter for Prometheus

Added to portage

2026-03-06

cinnamon - 6.6.7
Ebuild name:

gnome-extra/cinnamon-6.6.7

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2026-03-06

cinnamon-control-center - 6.6.0
Ebuild name:

gnome-extra/cinnamon-control-center-6.6.0

Description

Cinnamons's main interface to configure various aspects o

Added to portage

2026-03-06

cinnamon-desktop - 6.6.2
Ebuild name:

gnome-extra/cinnamon-desktop-6.6.2

Description

A collection of libraries and utilites used by Cinnamon

Added to portage

2026-03-06

cinnamon-menus - 6.6.0
Ebuild name:

gnome-extra/cinnamon-menus-6.6.0

Description

Cinnamon's library for the Desktop Menu fd.o specification

Added to portage

2026-03-06

cinnamon-screensaver - 6.6.1
Ebuild name:

gnome-extra/cinnamon-screensaver-6.6.1

Description

Screensaver for Cinnamon

Added to portage

2026-03-06

cinnamon-session - 6.6.3
Ebuild name:

gnome-extra/cinnamon-session-6.6.3

Description

Cinnamon session manager

Added to portage

2026-03-06

cinnamon-settings-daemon - 6.6.3
Ebuild name:

gnome-extra/cinnamon-settings-daemon-6.6.3

Description

Cinnamon's settings daemon

Added to portage

2026-03-06

cinnamon-translations - 6.6.2
Ebuild name:

gnome-extra/cinnamon-translations-6.6.2

Description

Translation data for Cinnamon

Added to portage

2026-03-06

cjs - 128.1
Ebuild name:

gnome-extra/cjs-128.1

Description

Linux Mint's fork of gjs for Cinnamon

Added to portage

2026-03-06

claude-code - 2.1.69
Ebuild name:

dev-util/claude-code-2.1.69

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-03-06

cli-helpers - 2.11.0
Ebuild name:

dev-python/cli-helpers-2.11.0

Description

Python helpers for common CLI tasks

Added to portage

2026-03-06

composable-kernel - 7.2.0
Ebuild name:

sci-libs/composable-kernel-7.2.0

Description

High Performance Composable Kernel for AMD GPUs

Added to portage

2026-03-06

cppgir - 2.0_p20260226
Ebuild name:

dev-cpp/cppgir-2.0_p20260226

Description

GObject-Introspection C++ binding wrapper generator

Added to portage

2026-03-06

dist-kernel - 6.1.166
Ebuild name:

virtual/dist-kernel-6.1.166

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-03-06

dist-kernel - 6.12.76
Ebuild name:

virtual/dist-kernel-6.12.76

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-03-06

dist-kernel - 6.6.129
Ebuild name:

virtual/dist-kernel-6.6.129

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-03-06

expect - 5.45.4-r6
Ebuild name:

dev-tcltk/expect-5.45.4-r6

Description

tool for automating interactive applications

Added to portage

2026-03-06

fricas - 1.3.13
Ebuild name:

sci-mathematics/fricas-1.3.13

Description

FriCAS is a fork of Axiom computer algebra system

Added to portage

2026-03-06

gentoo-kernel - 6.1.166
Ebuild name:

sys-kernel/gentoo-kernel-6.1.166

Description

Linux kernel built with Gentoo patches

Added to portage

2026-03-06

gentoo-kernel - 6.12.76
Ebuild name:

sys-kernel/gentoo-kernel-6.12.76

Description

Linux kernel built with Gentoo patches

Added to portage

2026-03-06

gentoo-kernel - 6.6.129
Ebuild name:

sys-kernel/gentoo-kernel-6.6.129

Description

Linux kernel built with Gentoo patches

Added to portage

2026-03-06

gentoo-kernel-bin - 6.1.166
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.166

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-03-06

gentoo-kernel-bin - 6.12.76
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.76

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-03-06

gentoo-kernel-bin - 6.6.129
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.129

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-03-06

gentoo-sources - 6.1.166
Ebuild name:

sys-kernel/gentoo-sources-6.1.166

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-03-06

gentoo-sources - 6.12.76
Ebuild name:

sys-kernel/gentoo-sources-6.12.76

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-03-06

gentoo-sources - 6.6.129
Ebuild name:

sys-kernel/gentoo-sources-6.6.129

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-03-06

google-api-python-client - 2.192.0
Ebuild name:

dev-python/google-api-python-client-2.192.0

Description

Google API Client for Python

Added to portage

2026-03-06

google-chrome-beta - 146.0.7680.65
Ebuild name:

www-client/google-chrome-beta-146.0.7680.65

Description

The web browser from Google

Added to portage

2026-03-06

grub - 2.14-r3
Ebuild name:

sys-boot/grub-2.14-r3

Description

GNU GRUB boot loader

Added to portage

2026-03-06

hcloud - 2.17.0
Ebuild name:

dev-python/hcloud-2.17.0

Description

Official Hetzner Cloud python library

Added to portage

2026-03-06

hip - 7.2.0
Ebuild name:

dev-util/hip-7.2.0

Description

C++ Heterogeneous-Compute Interface for Portability

Added to portage

2026-03-06

hipBLAS - 7.2.0
Ebuild name:

sci-libs/hipBLAS-7.2.0

Description

ROCm BLAS marshalling library

Added to portage

2026-03-06

hipBLAS-common - 7.2.0
Ebuild name:

sci-libs/hipBLAS-common-7.2.0

Description

Common files shared by hipBLAS and hipBLASLt

Added to portage

2026-03-06

hipBLASLt - 7.2.0
Ebuild name:

sci-libs/hipBLASLt-7.2.0

Description

General matrix-matrix operations library for AMD Instinct accelerators

Added to portage

2026-03-06

hipCUB - 7.2.0
Ebuild name:

sci-libs/hipCUB-7.2.0

Description

Wrapper of rocPRIM or CUB for GPU parallel primitives

Added to portage

2026-03-06

hipFFT - 7.2.0
Ebuild name:

sci-libs/hipFFT-7.2.0

Description

CU / ROCM agnostic hip FFT implementation

Added to portage

2026-03-06

hipRAND - 7.2.0
Ebuild name:

sci-libs/hipRAND-7.2.0

Description

CU / ROCM agnostic hip RAND implementation

Added to portage

2026-03-06

hipSOLVER - 7.2.0
Ebuild name:

sci-libs/hipSOLVER-7.2.0

Description

CU / ROCM agnostic marshalling library for LAPACK routines on the GPU

Added to portage

2026-03-06

hipSPARSE - 7.2.0
Ebuild name:

sci-libs/hipSPARSE-7.2.0

Description

ROCm SPARSE marshalling library

Added to portage

2026-03-06

hipcc - 7.2.0
Ebuild name:

dev-util/hipcc-7.2.0

Description

Radeon Open Compute hipcc

Added to portage

2026-03-06

hipify-clang - 7.2.0
Ebuild name:

dev-util/hipify-clang-7.2.0

Description

A set of tools to translate CUDA source code into portable HIP C++

Added to portage

2026-03-06

hipother - 7.2.0
Ebuild name:

dev-libs/hipother-7.2.0

Description

ROCclr runtime implementation for non-AMD HIP platforms, like NVIDIA

Added to portage

2026-03-06

hipsparselt - 7.2.0
Ebuild name:

sci-libs/hipsparselt-7.2.0

Description

Sparse GEMM operations library for AMD Instinct accelerators

Added to portage

2026-03-06

hotspot - 1.6.0
Ebuild name:

dev-debug/hotspot-1.6.0

Description

Linux perf GUI for performance analysis

Added to portage

2026-03-06

ipython - 9.11.0
Ebuild name:

dev-python/ipython-9.11.0

Description

Advanced interactive shell for Python

Added to portage

2026-03-06

isa-l - 2.32.0
Ebuild name:

dev-libs/isa-l-2.32.0

Description

Intelligent Storage Acceleration Library

Added to portage

2026-03-06

iwidgets - 4.1.1-r4
Ebuild name:

dev-tcltk/iwidgets-4.1.1-r4

Description

Widget collection for incrTcl/incrTk

Added to portage

2026-03-06

lhapdf - 6.5.6
Ebuild name:

sci-physics/lhapdf-6.5.6

Description

Les Houches Parton Density Function unified library

Added to portage

2026-03-06

libdwarf - 2.3.1
Ebuild name:

dev-libs/libdwarf-2.3.1

Description

Library intended to simplify reading (and writing) applications using DWARF

Added to portage

2026-03-06

libtimezonemap - 0.4.6_p7
Ebuild name:

dev-libs/libtimezonemap-0.4.6_p7

Description

GTK+3 timezone map widget

Added to portage

2026-03-06

libtorrent - 0.16.7
Ebuild name:

net-libs/libtorrent-0.16.7

Description

BitTorrent library written in C++ for *nix

Added to portage

2026-03-06

libvirt - 12.1.0
Ebuild name:

app-emulation/libvirt-12.1.0

Description

C toolkit to manipulate virtual machines

Added to portage

2026-03-06

libvirt-python - 12.1.0
Ebuild name:

dev-python/libvirt-python-12.1.0

Description

libvirt Python bindings

Added to portage

2026-03-06

libwebsockets - 4.5.4
Ebuild name:

net-libs/libwebsockets-4.5.4

Description

A flexible pure-C library for implementing network protocols

Added to portage

2026-03-06

mdadm - 4.4-r1
Ebuild name:

sys-fs/mdadm-4.4-r1

Description

Tool for running RAID systems - replacement for the raidtools

Added to portage

2026-03-06

mdadm - 4.5-r1
Ebuild name:

sys-fs/mdadm-4.5-r1

Description

Tool for running RAID systems - replacement for the raidtools

Added to portage

2026-03-06

microsoft-edge-beta - 146.0.3856.33
Ebuild name:

www-client/microsoft-edge-beta-146.0.3856.33

Description

The web browser from Microsoft

Added to portage

2026-03-06

microsoft-edge-dev - 147.0.3890.0
Ebuild name:

www-client/microsoft-edge-dev-147.0.3890.0

Description

The web browser from Microsoft

Added to portage

2026-03-06

miopen - 7.2.0
Ebuild name:

sci-libs/miopen-7.2.0

Description

AMD's Machine Intelligence Library

Added to portage

2026-03-06

mit-krb5 - 1.22.1
Ebuild name:

app-crypt/mit-krb5-1.22.1

Description

MIT Kerberos V

Added to portage

2026-03-06

mit-krb5 - 1.22.2
Ebuild name:

app-crypt/mit-krb5-1.22.2

Description

MIT Kerberos V

Added to portage

2026-03-06

mit-krb5-appl - 1.0.3-r4
Ebuild name:

app-crypt/mit-krb5-appl-1.0.3-r4

Description

Kerberized applications split from the main MIT Kerberos V distrib

Added to portage

2026-03-06

mit-krb5-appl - 1.0.3-r5
Ebuild name:

app-crypt/mit-krb5-appl-1.0.3-r5

Description

Kerberized applications split from the main MIT Kerberos V distrib

Added to portage

2026-03-06

mkp224o - 1.7.0
Ebuild name:

app-crypt/mkp224o-1.7.0

Description

Vanity address generator for v3 Tor hidden service addresses

Added to portage

2026-03-06

monkeysphere - 0.44-r2
Ebuild name:

app-crypt/monkeysphere-0.44-r2

Description

Leverage the OpenPGP web of trust for OpenSSH and Web authentication

Added to portage

2026-03-06

moolticute - 1.03.0-r2
Ebuild name:

app-crypt/moolticute-1.03.0-r2

Description

Mooltipass crossplatform daemon/tools

Added to portage

2026-03-06

moolticute - 9999
Ebuild name:

app-crypt/moolticute-9999

Description

Mooltipass crossplatform daemon/tools

Added to portage

2026-03-06

muffin - 6.6.3
Ebuild name:

x11-wm/muffin-6.6.3

Description

Compositing window manager forked from Mutter for use with Cinnamon

Added to portage

2026-03-06

mysqltcl - 3.052-r3
Ebuild name:

dev-tcltk/mysqltcl-3.052-r3

Description

TCL MySQL Interface

Added to portage

2026-03-06

nemo - 6.6.4
Ebuild name:

gnome-extra/nemo-6.6.4

Description

A file manager for Cinnamon, forked from Nautilus

Added to portage

2026-03-06

nemo-fileroller - 6.6.0
Ebuild name:

gnome-extra/nemo-fileroller-6.6.0

Description

Nemo file-roller integration

Added to portage

2026-03-06

nxml-libvirt-schemas - 12.1.0
Ebuild name:

app-emacs/nxml-libvirt-schemas-12.1.0

Description

Extension for nxml-mode with libvirt schemas

Added to portage

2026-03-06

octave-kernel - 0.37.0
Ebuild name:

dev-python/octave-kernel-0.37.0

Description

Jupyter kernel for octave

Added to portage

2026-03-06

openjdk - 26_beta35
Ebuild name:

dev-java/openjdk-26_beta35

Description

Open source implementation of the Java programming language

Added to portage

2026-03-06

openjdk - 27_alpha12
Ebuild name:

dev-java/openjdk-27_alpha12

Description

Open source implementation of the Java programming language

Added to portage

2026-03-06

openssh - 10.2_p1-r1
Ebuild name:

net-misc/openssh-10.2_p1-r1

Description

Port of OpenBSD's free SSH release

Added to portage

2026-03-06

opera - 128.0.5807.52
Ebuild name:

www-client/opera-128.0.5807.52

Description

A fast and secure web browser

Added to portage

2026-03-06

opera-developer - 130.0.5825.0
Ebuild name:

www-client/opera-developer-130.0.5825.0

Description

A fast and secure web browser

Added to portage

2026-03-06

passwdqc - 2.1.0
Ebuild name:

sys-auth/passwdqc-2.1.0

Description

Password strength checking library (and PAM module)

Added to portage

2026-03-06

plasma-workspace - 6.5.5-r2
Ebuild name:

kde-plasma/plasma-workspace-6.5.5-r2

Description

KDE Plasma workspace

Added to portage

2026-03-06

plasma-workspace - 6.6.2-r2
Ebuild name:

kde-plasma/plasma-workspace-6.6.2-r2

Description

KDE Plasma workspace

Added to portage

2026-03-06

platformdirs - 4.9.4
Ebuild name:

dev-python/platformdirs-4.9.4

Description

A small Python module for determining appropriate platform-specific d

Added to portage

2026-03-06

protontricks - 1.14.0
Ebuild name:

app-emulation/protontricks-1.14.0

Description

app-emulation/winetricks wrapper for Proton (Steam Play) games

Added to portage

2026-03-06

pytest-check - 2.7.6
Ebuild name:

dev-python/pytest-check-2.7.6

Description

pytest plugin that allows multiple failures per test

Added to portage

2026-03-06

python3-xapp - 3.0.2
Ebuild name:

dev-python/python3-xapp-3.0.2

Description

Python bindings for x11-libs/xapp

Added to portage

2026-03-06

rccl - 7.2.0
Ebuild name:

dev-libs/rccl-7.2.0

Description

ROCm Communication Collectives Library (RCCL)

Added to portage

2026-03-06

rocBLAS - 7.2.0
Ebuild name:

sci-libs/rocBLAS-7.2.0

Description

AMD's library for BLAS on ROCm

Added to portage

2026-03-06

rocFFT - 7.2.0
Ebuild name:

sci-libs/rocFFT-7.2.0

Description

Next generation FFT implementation for ROCm

Added to portage

2026-03-06

rocPRIM - 7.2.0
Ebuild name:

sci-libs/rocPRIM-7.2.0

Description

HIP parallel primitives for developing performant GPU-accelerated code on RO

Added to portage

2026-03-06

rocRAND - 7.2.0
Ebuild name:

sci-libs/rocRAND-7.2.0

Description

Generate pseudo-random and quasi-random numbers

Added to portage

2026-03-06

rocSOLVER - 7.2.0
Ebuild name:

sci-libs/rocSOLVER-7.2.0

Description

Implementation of a subset of LAPACK functionality on the ROCm platform

Added to portage

2026-03-06

rocSPARSE - 7.2.0
Ebuild name:

sci-libs/rocSPARSE-7.2.0

Description

Basic Linear Algebra Subroutines for sparse computation

Added to portage

2026-03-06

rocThrust - 7.2.0
Ebuild name:

sci-libs/rocThrust-7.2.0

Description

HIP back-end for the parallel algorithm library Thrust

Added to portage

2026-03-06

rocWMMA - 7.2.0
Ebuild name:

sci-libs/rocWMMA-7.2.0

Description

library for accelerating mixed precision matrix multiply-accumulate operatio

Added to portage

2026-03-06

rocdbgapi - 7.2.0
Ebuild name:

dev-libs/rocdbgapi-7.2.0

Description

AMD Debugger API

Added to portage

2026-03-06

rocm-cmake - 7.2.0
Ebuild name:

dev-build/rocm-cmake-7.2.0

Description

Radeon Open Compute CMake Modules

Added to portage

2026-03-06

rocm-comgr - 7.2.0
Ebuild name:

dev-libs/rocm-comgr-7.2.0

Description

Radeon Open Compute Code Object Manager

Added to portage

2026-03-06

rocm-core - 7.2.0
Ebuild name:

dev-libs/rocm-core-7.2.0

Description

Library that provides ROCm release version and install path information

Added to portage

2026-03-06

rocm-device-libs - 7.2.0
Ebuild name:

dev-libs/rocm-device-libs-7.2.0

Description

Radeon Open Compute Device Libraries

Added to portage

2026-03-06

rocm-opencl-runtime - 7.2.0
Ebuild name:

dev-libs/rocm-opencl-runtime-7.2.0

Description

Radeon Open Compute OpenCL Compatible Runtime

Added to portage

2026-03-06

rocm-smi - 7.2.0
Ebuild name:

dev-util/rocm-smi-7.2.0

Description

ROCm System Management Interface Library

Added to portage

2026-03-06

rocm_bandwidth_test - 7.2.0
Ebuild name:

dev-util/rocm_bandwidth_test-7.2.0

Description

Bandwidth test for ROCm

Added to portage

2026-03-06

rocminfo - 7.2.0
Ebuild name:

dev-util/rocminfo-7.2.0

Description

ROCm Application for Reporting System Info

Added to portage

2026-03-06

rocr-runtime - 7.2.0
Ebuild name:

dev-libs/rocr-runtime-7.2.0

Description

Radeon Open Compute Runtime

Added to portage

2026-03-06

roct-thunk-interface - 7.2.0
Ebuild name:

dev-libs/roct-thunk-interface-7.2.0

Description

Radeon Open Compute Thunk Interface

Added to portage

2026-03-06

roctracer - 7.2.0
Ebuild name:

dev-util/roctracer-7.2.0

Description

Callback/Activity Library for Performance tracing AMD GPU's

Added to portage

2026-03-06

rpp - 7.2.0
Ebuild name:

sci-libs/rpp-7.2.0

Description

AMD ROCm Performance Primitives (RPP) high-performance computer vision library

Added to portage

2026-03-06

rtorrent - 0.16.7
Ebuild name:

net-p2p/rtorrent-0.16.7

Description

BitTorrent Client using libtorrent

Added to portage

2026-03-06

ruff - 0.15.5
Ebuild name:

dev-util/ruff-0.15.5

Description

An extremely fast Python linter, written in Rust

Added to portage

2026-03-06

scikit-build-core - 0.12.2
Ebuild name:

dev-python/scikit-build-core-0.12.2

Description

Build backend for CMake based projects

Added to portage

2026-03-06

scwoop - 4.1-r2
Ebuild name:

dev-tcltk/scwoop-4.1-r2

Description

Simple Composite Widget Object Oriented Package

Added to portage

2026-03-06

signal-desktop-bin - 8.1.0
Ebuild name:

net-im/signal-desktop-bin-8.1.0

Description

Allows you to send and receive messages of Signal Messenger on your

Added to portage

2026-03-06

snack - 2.2.10-r14
Ebuild name:

dev-tcltk/snack-2.2.10-r14

Description

The Snack Sound Toolkit (Tcl)

Added to portage

2026-03-06

sparsehash - 2.0.4-r2
Ebuild name:

dev-cpp/sparsehash-2.0.4-r2

Description

An extremely memory-efficient hash_map implementation

Added to portage

2026-03-06

sphinx-autodoc-typehints - 3.9.7
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.9.7

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-03-06

sphinxcontrib-mermaid - 2.0.1
Ebuild name:

dev-python/sphinxcontrib-mermaid-2.0.1

Description

Sphinx spelling extension

Added to portage

2026-03-06

sslh - 2.3.1
Ebuild name:

net-misc/sslh-2.3.1

Description

Port multiplexer - accept both HTTPS and SSH connections on the same port

Added to portage

2026-03-06

tcl - 9.0.3-r2
Ebuild name:

dev-lang/tcl-9.0.3-r2

Description

Tool Command Language

Added to portage

2026-03-06

tcl3d - 0.9.5-r2
Ebuild name:

dev-tcltk/tcl3d-0.9.5-r2

Description

Tcl bindings to OpenGL and other 3D libraries

Added to portage

2026-03-06

tcl3d - 1.0.2
Ebuild name:

dev-tcltk/tcl3d-1.0.2

Description

Tcl bindings to OpenGL and other 3D libraries

Added to portage

2026-03-06

tclpython - 5.0-r4
Ebuild name:

dev-tcltk/tclpython-5.0-r4

Description

Python package for Tcl

Added to portage

2026-03-06

tclpython - 5.1
Ebuild name:

dev-tcltk/tclpython-5.1

Description

Python package for Tcl

Added to portage

2026-03-06

tclxml - 3.3.1-r4
Ebuild name:

dev-tcltk/tclxml-3.3.1-r4

Description

Pure Tcl implementation of an XML parser

Added to portage

2026-03-06

test2ref - 1.2.3
Ebuild name:

dev-python/test2ref-1.2.3

Description

Testing Against Learned Reference Data

Added to portage

2026-03-06

testssl - 3.2.3
Ebuild name:

net-analyzer/testssl-3.2.3

Description

Tool to check TLS/SSL cipher support

Added to portage

2026-03-06

tinyhtml5 - 2.1.0
Ebuild name:

dev-python/tinyhtml5-2.1.0

Description

HTML parser based on the WHATWG HTML specification

Added to portage

2026-03-06

tix - 8.4.3-r5
Ebuild name:

dev-tcltk/tix-8.4.3-r5

Description

A widget library for Tcl/Tk

Added to portage

2026-03-06

tk - 9.0.3-r2
Ebuild name:

dev-lang/tk-9.0.3-r2

Description

Tk Widget Set

Added to portage

2026-03-06

tkcon - 2.7.11-r1
Ebuild name:

dev-tcltk/tkcon-2.7.11-r1

Description

Tk GUI console

Added to portage

2026-03-06

tkpng - 0.9-r3
Ebuild name:

dev-tcltk/tkpng-0.9-r3

Description

Implements support for loading and using PNG images with Tcl/Tk

Added to portage

2026-03-06

tktray - 1.3.9-r3
Ebuild name:

dev-tcltk/tktray-1.3.9-r3

Description

System Tray Icon Support for Tk on X11

Added to portage

2026-03-06

togl - 2.0-r6
Ebuild name:

dev-tcltk/togl-2.0-r6

Description

A Tk widget for OpenGL rendering

Added to portage

2026-03-06

tox - 4.48.1
Ebuild name:

dev-python/tox-4.48.1

Description

virtualenv-based automation of test activities

Added to portage

2026-03-06

trimesh - 4.11.3
Ebuild name:

dev-python/trimesh-4.11.3

Description

Python library for loading and using triangular meshes

Added to portage

2026-03-06

tuxedo-drivers - 4.21.0
Ebuild name:

app-laptop/tuxedo-drivers-4.21.0

Description

Kernel modules for TUXEDO laptops

Added to portage

2026-03-06

vanilla-kernel - 6.1.166
Ebuild name:

sys-kernel/vanilla-kernel-6.1.166

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-03-06

vanilla-kernel - 6.12.76
Ebuild name:

sys-kernel/vanilla-kernel-6.12.76

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-03-06

vanilla-kernel - 6.6.129
Ebuild name:

sys-kernel/vanilla-kernel-6.6.129

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-03-06

vivaldi - 7.8.3925.76
Ebuild name:

www-client/vivaldi-7.8.3925.76

Description

A browser for our friends

Added to portage

2026-03-06

vivaldi-snapshot - 7.9.3966.3
Ebuild name:

www-client/vivaldi-snapshot-7.9.3966.3

Description

A browser for our friends

Added to portage

2026-03-06

vtcl - 1.6.1_alpha1-r1
Ebuild name:

dev-tcltk/vtcl-1.6.1_alpha1-r1

Description

Visual Tcl is a high-quality application development environment

Added to portage

2026-03-06

wrapt - 2.1.2
Ebuild name:

dev-python/wrapt-2.1.2

Description

Module for decorators, wrappers and monkey patching

Added to portage

2026-03-06

xapp - 3.2.2
Ebuild name:

x11-libs/xapp-3.2.2

Description

Cross-desktop libraries and common resources

Added to portage

2026-03-06

xapp-symbolic-icon-theme - 1.0.9
Ebuild name:

x11-themes/xapp-symbolic-icon-theme-1.0.9

Description

XApp Symbolic Icons

Added to portage

2026-03-06

xdg-desktop-portal-xapp - 1.1.3
Ebuild name:

sys-apps/xdg-desktop-portal-xapp-1.1.3

Description

Backend implementation for xdg-desktop-portal using Cinnamon

Added to portage

2026-03-06

zen-sources - 6.19.6
Ebuild name:

sys-kernel/zen-sources-6.19.6

Description

The Zen Kernel Live Sources

Added to portage

2026-03-06

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 79.4 ms